.content-wrapper {
  background-image: url('/images/sqas.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}



/* Add this */
.content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3); /* white overlay with 60% opacity */
  z-index: -1; /* Put behind the content */
}

  .card {
    background-color: rgba(255, 255, 255, 0.9); /* light background with transparency */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);  /* card shadow */
    color: #000; /* restore readable text in cards */
  }